home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / reliable / rudp.h < prev    next >
C/C++ Source or Header  |  1989-12-17  |  293b  |  18 lines

  1. /*
  2.  * Definitions for more reliable UDP client/server programs.
  3.  */
  4.  
  5. #include    <stdio.h>
  6. #include    <sys/types.h>
  7. #include    <sys/socket.h>
  8. #include    <netinet/in.h>
  9. #include    <sys/errno.h>
  10. extern int    errno;
  11.  
  12. #define    HOST        "hsi86"
  13. #define    MYECHO_SERVICE    "myecho"
  14.  
  15. #define    MAXLINE         255
  16.  
  17. char        *pname;
  18.